home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / C / LIB / EXPRO / _files / _exprodir / exprofle._h < prev    next >
Text File  |  1990-06-04  |  307b  |  27 lines

  1. /*
  2.  *  exprofle.h
  3.  *
  4.  *  version 1.00, 04-06-1990
  5.  *
  6.  *  execution profiler headerfile
  7.  *
  8.  *  copyright Ferdinand Oeinck 1990
  9.  *
  10.  *
  11.  */
  12.  
  13. #ifndef __expro_h
  14. #define __expro_h
  15.  
  16. #ifndef EXPRO
  17. #define EXPRO 0
  18. #endif
  19.  
  20. #if EXPRO
  21. void exprofle_init(char * filename);
  22. #else
  23. #define exprofle_init(a) ;
  24. #endif
  25.  
  26. #endif
  27.